home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / windows / games / wmfread.arj / WMFDCODE.DEF < prev    next >
Text File  |  1992-11-17  |  1KB  |  46 lines

  1. ; module-definition file -- used by LINK.EXE
  2.  
  3. NAME         WMFDCODE       ; application's module name
  4.  
  5. DESCRIPTION  'Windows Metafile Decoder - by Dennis R. Crain'
  6.  
  7. EXETYPE      WINDOWS       ; required for all Windows applications
  8.  
  9. STUB         'WINSTUB.EXE' ; Generates error message if application
  10.                ; is run without Windows
  11.  
  12. ;CODE can be moved in memory and discarded/reloaded
  13. CODE  PRELOAD MOVEABLE DISCARDABLE
  14.  
  15. ;DATA must be MULTIPLE if program can be invoked more than once
  16. DATA  PRELOAD MOVEABLE MULTIPLE
  17.  
  18. SEGMENTS
  19.        _TEXT     MOVEABLE
  20.        _WMFDCODE MOVEABLE DISCARDABLE
  21.        _WMFMETA  MOVEABLE DISCARDABLE
  22.        _WMFDLG   MOVEABLE DISCARDABLE
  23.        _WMFPRINT MOVEABLE DISCARDABLE
  24.        _CMNDLG     MOVEABLE DISCARDABLE
  25.  
  26. HEAPSIZE     5120
  27. STACKSIZE    10000       ; recommended minimum for Windows applications
  28.  
  29.  
  30. ; All functions that will be called by any Windows routine
  31. ; MUST be exported.
  32.  
  33. EXPORTS
  34.     MainWndProc         @1
  35.     About                @2
  36.         WMFRecDlgProc       @3
  37.         MetaEnumProc        @4
  38.         HeaderDlgProc       @5
  39.         ClpHeaderDlgProc    @6
  40.         AldusHeaderDlgProc  @7
  41.         EnumRangeDlgProc    @8
  42.     ListDlgProc        @9
  43.     PlayFromListDlgProc @10
  44.     AbortDlg        @11
  45.     AbortProc        @12
  46.